Introduction to Golang
Concepts of Programming Languages
Sebastian Macke
Rosenheim Technical University
Sebastian Macke
Rosenheim Technical University
Rob Pike @ Google 2009 (60 Min)
www.youtube.com/watch?v=rKnDgT73v8s
package main import ( "fmt" ) func main() { fmt.Printf("Hello %s", "Programming with Go \xE2\x98\xAF\n") // \xE2\x98\xAF -> ☯ fmt.Printf("Hello %s", "Programming with Go ☯\n") }
github.com/s-macke/concepts-of-programming-languages/blob/master/docs/exercises/Exercise1.md
9github.com/s-macke/concepts-of-programming-languages
10